home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
tokens.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
1KB
|
31 lines
-- RCSVER $Id: tokens.sql,v 1.6 2000-03-21 13:26:46-06 randy Exp $ */
-- *************************************************************************
-- Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
--
-- Name: tokens.sql
-- Date: 02/01/00
-- memo: Randy Wood
-- Description: Create the tokens table. This table is used to confgure
-- the token acceptance for the farebox.
-- Changes:
-- ************************************************************************* */
CREATE TABLE tokens
(
token NUMBER(38), /* ID of this token from currency table */
fareset NUMBER(38), /* Fareset this token is valid in */
fare NUMBER(38), /* Fare that is automatically recorded
* when this token is accepted.
*/
coin_size NUMBER(38), /* Value of coin that has similar size
* This value is used to calculate
* volume for determining when the
* cashbox is full.
*/
descr VARCHAR2(20), /* Description to display at OCU */
config_num NUMBER(38),
beep_class NUMBER(38), /* beep class to sound when valid
* token is accepted by farebox
*/
CONSTRAINT pk_tokens PRIMARY KEY (token, fareset, config_num)
);